.SiteContainment {
	margin-left: auto;
	margin-right: auto;
	width: 1200px;
	margin-top: 10px;
	
}

body
{
	background-color:#C29AF1;
	margin: 0px;
	color: black;
    text-align:left;
	font-size:15px;
	font-family:"Palatino", serif;
}

/* Header */
.TopTitle {
	font-family:"Palatino", serif;
	font-size:80px;
	color: white;
	text-align: center;
	background-color: #B67DFA;
	margin: 3px 10px 3px 10px;
	width: 100%;
}


/*  Footer  */
.BottomTitle {
	font-family:"Palatino", serif;
	font-size:20px;
	color: white;
	text-align: center;
	background-color: #B67DFA;
	margin: 3px 10px 3px 10px;
	width: 100%;
    height:50px;   /* Height of the footer */
	float: bottom;
}



/* Side Nav  */
.sidenav {
    float: left;
	width: 100%;
    position: relative;
    z-index: 1;
    top: 20px;
    left: 10px;
	margin: 0px 0px 20px 0px;
    background: #B67DFA;   /* button background color dark purple for all nav buttons  */
    overflow-x: hidden;
    padding: 0px 1px 0px 0px;
}

.sidenav a, .dropdown-btn {        /* Style the sidenav links and the dropdown button */
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-family:"Palatino", serif;
	font-size: 25px;
    color: white;  /* nnnnn  */
    display: block;
	width: 100%;
	text-align: left;
	cursor: pointer;
	background: #B67DFA;
	border: 2px;
}

.sidenav a:hover , .dropdown-btn:hover {    /* On mouse-over */
    background-color: #C29AF1;
	color:#FFFFFF;
}


.main {   /* Main content */
    margin-left: 200px; /* Same as the width of the sidenav */
    font-size: 20px; /* Increased text to enable scrolling */
    padding: 0px 10px;
}

.active {        /* Add an active class to the active dropdown button */
    background-color: #C29AF1;
    color: white;
}


.dropdown-container {    /* Dropdown container (hidden by default). Optional: add a lighter 
						background color and some left padding to 
						change the design of the dropdown content */
    display: none;
    background-color: #E9D8FE; /*really light purple*/
    padding-left: 16px;
}


/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}


	

	
	
/* Links */
.BasicLink a
{
	color:#CB3CFC;
	font-family:"Trebuchet MS";
	font-size:20px;
}
.BasicLink a:visited
{
	color:#FAFC5D;
}
.BasicLink a:hover
{
	color:#AF07D9;
}







/* Middle content box */
.MiddleContent {
	float: right;
	width: 870px;
	margin-top: 20px;
	margin-bottom: 20px;
	position: relative;
	background-color: white;
	padding: 25px;
	
}



.GeneralImg {
	width: 600px;
}




/*  Left Column  */
.LeftColumn {
	float: left;
	width: 20%;
	position: relative;
}

/* Text Box on left */
.LeftColumnBox {
	width: 100%;
	position: relative;
	top: 20px;
	left: 10px;
	/*border: 2px solid black;*/
	background-color: #9A9A9A;  /*B2B2B2*/
	margin: 20px 0px 20px 0px;
	clear: both;
} 

.LeftColumnTitle {
	font-family:"Trebuchet MS";
	font-size: 25px;
	color: black;
	padding: 10px;
	margin: 0px;
}

.LeftColumnInternal {
	font-family:"Trebuchet MS";
	font-size: 15px;
	color: black;
	padding: 10px;
	margin: 0px;
}




/*  BODY FONTS  */
.Title1 {
	margin: 0px;
	padding-top: 0px;
	font-size: 40px;
	text-align: center;
}

.Title2 {
	margin: 0px;
	font-size: 25px;
}
	

.BasicUndrln {
    text-decoration: underline;
}

.IndentedBdy {
	text-indent: 35px;
}

.IndentedBdy2 {
	text-indent: 0px;
	margin-left: 55px;
}

.IndentedPara {
	margin: 35px;
}




/*  IMAGES   */
/* General Image - Alligned Right */
.imagefloatrightmargin
{
	float: right;
	width:400px;
    margin: 10px 20px 0px 10px;
}	

/* General Image - Alligned Left */
.imagefloatleftmargin
{
	float:left;
    border:10px solid white;
    margin:15px 60px 0px 15px;
}	





/* Table for GALLERY */
table
{
	width:80%;
	border-collapse: collapse;
}
th
{	
	height:12px;
	padding:1px;
	border-bottom:5px solid white;
	font-family:"Palatino", serif;
	font-size:25px;
	color:black;
	text-align:center;
}
tr:nth-child(odd) td				/* Creates pricing row */
{
	font-family:"Palatino", serif;
	font-size:15px;
	color:black;
}
td
{
	padding:8px
}
.galimg				/* Formatting for images in the gallery table */ /* Vertical ones */
{
	height:200px;
}
.galimghorizontal       /* Formatting for images in the gallery table */ /* Horizontal ones */
{
	width:200px;
}	






/* Contact From Div */
.ContactDiv
{
	border-radius: 5px;
    background-color:white;
    padding:20px;
	max-width:600px;
	margin:25px;
	font-family:"Palatino", serif;
	font-size:20px;
	text-align:left;
}

/* Contact Form  */
input[type=text], select 
{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 3px solid grey;
    border-radius: 4px;
    box-sizing: border-box;
	font-family:"Palatino", serif;
	font-size:20px;
}

input[type=submit] 
{
    width: 100%;
    background-color:#8E32FC;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: 3px solid grey;
    border-radius: 4px;
    cursor: pointer;
	font-family:"Palatino", serif;
	font-size:20px;
}

input[type=submit]:hover {
    background-color:#C29AF1;
	color:black;
	border: 3px solid grey;
}
textarea 
{
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 3px solid grey;
    border-radius: 4px;
    background-color:white;
    font-family:"Palatino", serif;
	font-size:20px;
	color:grey;
    resize: none;
	margin-top:10px;
}


